gh-153309 Add HTTP QUERY method (RFC 10008) to http library - #153310
gh-153309 Add HTTP QUERY method (RFC 10008) to http library#153310mbeijen wants to merge 7 commits into
Conversation
Documentation build overview
85 files changed ·
|
picnixz
left a comment
There was a problem hiding this comment.
Don't we need something like do_QUERY in HTTP client etcs? please also check if we need tests for that.
We have these Line 455 in 1051384 do_DELETE and so on.
|
|
(I will do a review tomorrow while I am commuting) |
|
@picnixz you seem to be the most active reviewer on this PR, can you help me move this forward? |
|
|
||
| * RFC 9110: HTTP Semantics, obsoletes 7231, which obsoleted 2616 | ||
| * RFC 5789: PATCH Method for HTTP | ||
| * RFC 10008: The HTTP QUERY Method |
There was a problem hiding this comment.
Maybe change the wording so that it matches the previous statement?
| * RFC 10008: The HTTP QUERY Method | |
| * RFC 10008: QUERY Method for HTTP |
There was a problem hiding this comment.
well now it matches RFC
Co-authored-by: Eduardo Villalpando Mello <eduardo.villalpando.mello@gmail.com>
7029866 to
c1fc922
Compare
|
@StanFromIreland why did you close? I think I messed up because i wanted to merge origin/main into my tree and then I force pushed, is that a big nono? What should I do now, open a new PR and start again? |
|
Open up a new PR, you've requested a review from many people who have now been automatically subscribed to this PR. |
Yeah I'm sorry, I messed up by rebasing in the wrong direction and this triggered a massive set of reviewers that got added because of CODEOWNERS :sad: sorry for the mess |
|
merging main into PR branches is normal and should never cause an issue other than a merge conflict that really needs fixing. force-pushing on PR branches is seldom (never?) needed and not wanted and can cause the problem here. |
RFC 10008: The HTTP QUERY Method is now a finalized RFC on the Standards track, and the method name has been added to the IANA registry
Add it to http library HTTPMethod enum, too